home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / s / ep_stop.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  275b  |  23 lines

  1. /* EaglePlayer - Stop Playing */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6. status G fil
  7.  
  8. if result == "no" then do
  9.     say "No Module loaded !"
  10. end
  11. else do
  12.  
  13.  status G ply
  14.  
  15.  if result == "no" then do
  16.     say "Player don`t playing !"
  17.  end
  18.  else
  19.     Stop
  20.     say "Playing now stopped !"
  21.  end
  22.  
  23. end